@import url(//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSansNeo.css);

* {
  box-sizing: border-box;
}

.addcart {
  display: none !important;
  /* 주문기능 미구현 */
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 800;
  color: #c6a68d;
  overscroll-behavior: none;
  background-color: #000;
  justify-content: center;
  text-align: center;
  align-items: center;
}

a {
  text-decoration: none;
  color: #c6a68d;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.logout {
  background-color: #bc0000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 7px;
}

.edit_parent {
  position: relative;
}

/* 편집 관련 */

.edit {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  z-index: 500;
}

.edit .id,
.edit .btn,
.edit .up,
.edit .down {
  padding: 12px 23px;
  border-radius: 3px;
  color: #fff;
  font-weight: 500;
  margin-left: 10px;
  cursor: pointer;
}

.edit .id {
  font-size: 17px;
  background-color: #878787;
  cursor: auto;
}

.edit .btn.addNotice {
  font-size: 17px;
  background-color: #45a049;
}

.edit .btn {
  font-size: 17px;
  background-color: rgba(255, 0, 0, 0.8);
}

.edit .up,
.edit .down {
  font-size: 14px;
  background-color: rgba(100, 149, 237, 0.8);
}

@media (max-width: 600px) {
  .edit .up,
  .edit .down,
  .edit .btn.addNotice,
  .edit .btn,
  .edit .id {
    font-size: calc(14px + (17 - 14) * ((100vw - 412px) / (600 - 412)));
  }
}

/* 하단 버튼 */
.editMenuBox {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  display: flex;
}

/* 요소 추가 */
#addMenu,
#editMenus {
  background-color: #45a049;
  padding: 9px 12px;
  border-radius: 3px;
  cursor: pointer;
}

#editMenus {
  margin-left: 10px;
}

/* 새로고침 */
.refrash {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  background-color: rgba(255, 0, 0, 0.8);
  padding: 7px 12px;
  border-radius: 3px;
  cursor: pointer;
}

@media (max-width: 790px) {
  .refrash span {
    font-size: calc(0.01587 * 100vw + 11.463px);
  }
}

/* 현재 언어 표시 */
.language_indication {
  position: fixed;
  font-size: 10px;
  color: #fff;
  opacity: 0.2;
  bottom: 5px;
  right: 5px;
  font-weight: 300;
}

/* 로딩화면 */
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("image/background.webp");
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.innerContainer {
  position: absolute;
  top: 85px;
  left: 20px;
  right: 20px;
  z-index: 1;
  bottom: 80px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.innerContainer::-webkit-scrollbar {
  display: none;
}

@media (max-width: 790px) {
  .innerContainer {
    top: 70px;
    bottom: 70px;
  }
}

@media (min-width: 1350px) {
  .container {
    max-width: 1270px;
    display: block;
  }
  .innerContainer {
    width: 1270px;
    justify-content: center;
    margin: 0 auto;
    padding: 0 40px;
  }
}

/* 스크롤 안내 */

.scroll-indicator {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 14px;
  border-radius: 5px;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.scroll-indicator.top {
  top: 10px;
}

.scroll-indicator.bottom {
  bottom: 10px;
}

/* nav.ejs 관련 ----------------------------------------------- */

/* 배경이미지 */
.background-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("image/background.webp");
  background-size: cover;
  background-position: center;
  position: fixed;
  z-index: -10;
}

.fixed-header {
  width: 100%;
  padding: 20px 30px 0;
  position: fixed;
  display: flex;
  justify-content: space-between;
}

.fixed-header .left,
.fixed-header .right,
.fixed-header .center {
  font-weight: 700;
}

.fixed-header .left {
  width: 94px;
  height: 54px;
  border: 1px solid #c6a68d;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
}

.fixed-header .center {
  font-size: 30px;
  align-self: center;
}

.fixed-header .center.main {
  margin-top: 10px;
}

.fixed-header .right {
  width: 104px;
  height: 54px;
  border-radius: 3px;
  background-color: #bc0000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.order-button {
  color: #fff;
}

@media (max-width: 790px) {
  .fixed-header {
    padding: 20px 20px 0;
  }
  .fixed-header .left {
    width: 73px;
    height: 40px;
    font-size: 16px;
  }
  .fixed-header .center {
    font-size: 20px;
  }
  .fixed-header .right {
    width: 73px;
    height: 40px;
    font-size: 16px;
  }
}

@media (min-width: 1350px) {
  .nav {
    width: 1270px;
    justify-content: center;
    margin: 0 auto;
  }
  .background-container {
    width: 1270px;
    left: 50%;
    transform: translateX(-50%);
  }
  .fixed-header {
    width: 1270px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* 번역버튼, 로고, 원산지표시  */

.orgText {
  position: fixed;
  bottom: 0;
  text-align: left;
  color: #878787;
  font-weight: 400;
  font-size: 12px;
  padding: 25px 40px;
  width: 800px;
}

.fixed-bottom {
  bottom: 0;
  width: 100%;
  position: fixed;
}

.lngSelect {
  z-index: 1000;
  right: 20px;
  cursor: pointer;
  position: fixed;
  bottom: 13px;
}

.lngSelect .langIcon {
  font-size: 45px;
}

/* 상단로고 */
.horizontal_logo {
  margin-top: 15px;
  width: 150px;
}
.horizontal_logo img {
  width: 100%;
}

@media (max-width: 790px) {
  .orgText {
    bottom: 0;
    padding: 0 20px 16px;
    font-size: 11px;
    max-width: calc(100vw - 50px);
  }
  .lngSelect {
    bottom: 10px;
    right: 20px;
  }
  .lngSelect .langIcon {
    font-size: 30px;
  }
  .horizontal_logo {
    width: 100px;
  }
}

@media (min-width: 1350px) {
  .fixed-bottom {
    width: 1270px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* 탑 네비게이션 종료 ----------------------------- */

/* 뉴스 이미지 시작 -------------------------------------------- */

.topbox {
  position: relative;
  height: 655px;
}

.newsBox {
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 615px;
  z-index: 10;
}

.newsBox.active {
  visibility: visible;
  opacity: 1;
}

.newsBox img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.newsNavBox {
  display: flex;
  padding: 17px 0 0;
}

.newsNavBox .newsNavBoxPrev,
.newsNavBox .newsNavBoxNext {
  display: flex;
  width: 80px;
  height: 134px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 20;
}

.newsNavBox .newsNavBoxPrev:hover,
.newsNavBox .newsNavBoxNext:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.newsNavBoxValue {
  text-align: left;
  flex: 1;
}

.newsNavBoxValue .title {
  font-size: 28px;
  font-weight: bold;
}

.newsNavBoxValue .content {
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  margin-top: 15px;
  line-height: 23px;
}

.newsCircleBox {
  position: absolute;
  bottom: 0;
  display: flex;
  width: 100%;
  justify-content: center;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #3c3c3c;
}

.newsCircle {
  width: 10px;
  height: 10px;
  background-color: #3c3c3c;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (max-width: 790px) {
  .topbox {
    height: calc(0.185 * 100vw + 298.85px);
  }
  .newsBox {
    height: calc(0.1852 * 100vw + 258.692px);
  }
  .newsBox img {
    height: calc(0.185 * 100vw + 133.85px);
  }
  .newsNavBox {
    padding: 17px 0 0;
  }
  .newsNavBox .newsNavBoxPrev {
    display: none;
  }
  .newsNavBox .newsNavBoxNext {
    width: 50px;
    height: 90px;
  }
  .newsNavBoxValue .title {
    font-size: 20px;
  }
  .newsNavBoxValue .content {
    margin-top: 4px;
    font-size: 14px;
    line-height: 20px;
  }
  .newsCircleBox {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .newsCircle {
    width: 9px;
    height: 9px;
    margin: 0 6px;
  }
}

.newsCircle.active {
  background-color: #d9d9d9;
}

/* 뉴스 이미지 종료 ------------------------------------- */

/* 메뉴판 시작 ------------------------------------ */

.selectTitle {
  font-size: 31px;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* 일괄편집용 체크박스 스타일 */
.selectTitle .menuCheckbox {
  position: absolute;
  top: 50%;
  transform: translateY(-65%);
  left: 0;
  width: 25px;
  height: 25px;
  z-index: 501;
}

.selectTitle .selectBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.3);
  z-index: 1;
}

/* 스티커 영역 부분  */
.menu_sticker {
  display: flex;
  margin-top: 7px;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
}

.menu_beverage_title .menu_sticker {
  margin-top: 0;
}

@media (max-width: 790px) {
  .menu_sticker {
    font-size: calc(0.00529 * 100vw + 6.821px);
  }
}

/* 스티커들 공용 */
.menu_new,
.menu_best {
  display: flex;
  border-radius: 2px;
  text-align: center;
  padding: 1px 5px 0;
  margin-left: 7px;
  height: 20px;
  justify-content: center;
  align-items: center;
}

.menu_sticker > :first-child {
  margin-left: 0;
}

/* new 스티커 */
.menu_new {
  background-color: #c6a68d;
}

/* best 스티커 */
.menu_best {
  background-color: #bc0000;
}

/* hot 스티커 */
.menu_hot {
  margin-left: 7px;
  font-size: 14px;
  white-space: nowrap;
}

.soldout_cover {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.soldout_cover::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 10px;
  border-radius: 7px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.soldout_cover::after {
  content: "Sold Out";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  font-weight: bold;
  z-index: 3;
  text-align: center;
}

/* 디테일 금액 부분 공통 */
.detail_title .menu_amount {
  display: flex;
}

.detail_title .menu_amount .hotBox {
  margin-right: 20px;
}

.detail_title .menu_amount .hotBox .hotText,
.detail_title .menu_amount .coldBox .coldText {
  font-size: 15px;
  margin-right: 10px;
}

/* 기본 가리기 */
.selectTitle .title_visual,
.selectTitle .menu_basic_visual,
.selectTitle .menu_beverage_visual,
.selectTitle .menu_set_visual,
.selectTitle .line_visual,
.selectTitle .title_beverage_visual {
  display: none;
  box-sizing: border-box;
}

/* 해당되는 타입 보이기 */
.selectTitle .title .title_visual,
.selectTitle .menu_basic .menu_basic_visual,
.selectTitle .menu_beverage .menu_beverage_visual,
.selectTitle .menu_set .menu_set_visual,
.selectTitle .line .line_visual,
.selectTitle .title_beverage .title_beverage_visual {
  display: block;
}

/* 모든타입 공통 (타이틀제외) */
.selectTitle .menu_basic .menu_basic_visual,
.selectTitle .menu_beverage .menu_beverage_visual,
.selectTitle .menu_set .menu_set_visual {
  display: flex;
  padding: 22px 0;
  border-bottom: 1px solid #3c3c3c;
}

/* title 속성 ------------------------------ */

.selectTitle .title .title_visual {
  padding: 20px 0;
  font-size: 35px;
}

@media (max-width: 790px) {
  .selectTitle .title .title_visual {
    padding: 10px 0;
    font-size: calc(0.0265 * 100vw + 14.065px);
  }
}

/* 구분선 속성 ----------------------------- */

.selectTitle .line .line_visual {
  padding: 20px 0 10px;
  font-size: 25px;
  border-bottom: 1px solid #c6a68d;
}

.selectTitle .line .line_visual .titleText {
  color: #fff;
}

@media (max-width: 790px) {
  .selectTitle .line .line_visual {
    font-size: calc(0.0212 * 100vw + 8.252px);
  }
}

/* menu_basic 속성 ------------------------- */

.selectTitle .menu_basic_visual {
  position: relative;
}
.selectTitle .menu_basic_visual .bgimg {
  display: none;
}

.selectTitle .menu_basic_visual .img {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.selectTitle .menu_basic_visual img {
  width: 214px;
  height: 142px;
  object-fit: cover;
  border-radius: 6px;
  /* display: block; */
}

.selectTitle .menu_basic_visual .menuValue {
  width: 100%;
  margin-left: 28px;
  display: flex;
  flex-direction: column;
}

.selectTitle .menu_basic_visual .menuValue .menu_basic_title {
  padding: 5px 0;
  font-size: 23px;
  margin-right: 30px;
}

/* 메뉴 설명 */
.selectTitle .menu_basic_visual .menu_description {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  margin-top: 7px;
  flex: 1;
  letter-spacing: -0.5px;
  line-height: 23px;
}

/* 원산지 표시 */
.selectTitle .menu_basic_visual .menu_origin {
  font-size: 13px;
  font-weight: 700;
  color: #b2b2b2;
  margin-top: 10px;
}

/* 매뉴베이직 우측 금액이랑 담기부분 */
.selectTitle .menu_basic_visual .menu_right {
  align-items: end;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 금액 부분  */
.selectTitle .menu_basic_visual .menu_amount {
  padding: 5px 0;
  font-size: 22px;
  color: #fff;
  white-space: nowrap;
}

/* 담기 부분 */
.selectTitle .menu_basic_visual .addcart {
  border-radius: 4px;
  width: 70px;
  font-size: 18px;
  background-color: #bc0000;
  padding: 12px 8px;
  color: #fff;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}

@media (max-width: 790px) {
  .selectTitle .menu_basic_visual .menu_description {
    font-size: calc(0.0053 * 100vw + 11.813px);
    line-height: calc(0.0079 * 100vw + 16.759px);
  }
  .selectTitle .menu_basic_visual .menuValue {
    margin-left: 0;
  }

  .selectTitle .menu_basic_visual img {
    display: none;
  }

  .selectTitle .menu_basic_visual .menuValue .menu_basic_title {
    font-size: calc(0.0159 * 100vw + 10.439px);
  }

  .selectTitle .menu_basic_visual .menu_amount {
    font-size: calc(0.0159 * 100vw + 9.439px);
  }

  .selectTitle .menu_basic_visual .addcart {
    width: calc(0.0317 * 100vw + 44.957px);
    font-size: calc(0.0079 * 100vw + 11.759px);
  }
}

/* menu_beverage 속성 -------------------------- */

.selectTitle .menu_beverage_visual .img {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.selectTitle .menu_beverage_visual img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 3px;
}

.selectTitle .menu_beverage_visual .menuValue {
  width: 100%;
  margin-left: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.selectTitle .menu_beverage_visual .menuValue .menu_beverage_title {
  padding: 5px 0;
  font-size: 22px;
  display: flex;
  align-items: center;
}

/* 메뉴 설명 */
.selectTitle .menu_beverage_visual .menu_description {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  align-items: end;
}

.selectTitle .menu_beverage_visual .menu_origin {
  font-size: 13px;
  font-weight: 700;
  color: #b2b2b2;
  margin-top: 10px;
}

/* 매뉴베이직 우측 금액이랑 담기부분 */
.selectTitle .menu_beverage_visual .menu_right {
  display: flex;
  align-items: center;
}

/* 금액 부분 */
.selectTitle .menu_beverage_visual .menu_amount {
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
  width: 100px;
  text-align: end;
}

.selectTitle .menu_beverage_visual .amount_set {
  display: flex;
}

.selectTitle .menu_beverage_visual .menu_amount.hot {
  margin-right: 20px;
  width: 100px;
  text-align: end;
}

/* 담기 부분 */
.selectTitle .menu_beverage_visual .addcart {
  border-radius: 4px;
  width: 70px;
  margin-left: 20px;
  font-size: 18px;
  background-color: #bc0000;
  padding: 12px 8px;
  color: #fff;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}

@media (max-width: 600px) {
  .selectTitle .menu_beverage_visual .menu_amount.hot {
    margin-right: 0;
  }
  .selectTitle .menu_beverage_visual .menu_amount.hot {
    margin-bottom: 5px;
  }
  .selectTitle .menu_beverage_visual .amount_set {
    flex-direction: column;
  }
}

@media (max-width: 790px) {
  .selectTitle .menu_beverage_visual img {
    display: none;
  }

  .selectTitle .menu_beverage_visual .menuValue {
    margin-left: 0;
  }

  .selectTitle .menu_beverage_visual .menuValue .menu_beverage_title {
    font-size: calc(0.0159 * 100vw + 10.439px);
  }

  .selectTitle .menu_beverage_visual .menu_description {
    font-size: calc(0.0053 * 100vw + 10.813px);
  }

  .selectTitle .menu_beverage_visual .menu_amount {
    font-size: calc(0.0159 * 100vw + 9.439px);
  }

  .selectTitle .menu_beverage_visual .addcart {
    width: calc(0.0317 * 100vw + 44.957px);
    font-size: calc(0.0079 * 100vw + 11.759px);
  }
}

/* title_beverage 속성 -------------------------- */

.selectTitle .title_beverage .title_beverage_visual {
  padding: 20px 0 10px;
  font-size: 25px;
  border-bottom: 1px solid #c6a68d;
}

.selectTitle .title_beverage .title_beverage_visual .titleText {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selectTitle .title_beverage .title_beverage_visual .titleText .content {
  display: flex;
  font-size: 18px;
  font-weight: 400;
}

.selectTitle .title_beverage .title_beverage_visual .titleText .content .hot,
.selectTitle .title_beverage .title_beverage_visual .titleText .content .cold {
  width: 100px;
  text-align: end;
}

.selectTitle .title_beverage .title_beverage_visual .titleText .content .hot {
  margin-right: 20px;
}

.selectTitle
  .title_beverage
  .title_beverage_visual
  .titleText
  .content
  .addcart {
  width: 70px;
  margin-left: 20px;
}

@media (max-width: 790px) {
  .selectTitle .title_beverage .title_beverage_visual .titleText .content {
    font-size: calc(0.0159 * 100vw + 6.439px);
  }
  .selectTitle .title_beverage .title_beverage_visual {
    font-size: calc(0.0212 * 100vw + 8.252px);
  }
}

@media (min-width: 601px) and (max-width: 790px) {
  .selectTitle .title_beverage .title_beverage_visual .titleText .content .hot,
  .selectTitle
    .title_beverage
    .title_beverage_visual
    .titleText
    .content
    .cold {
    width: calc(0.0741 * 100vw + 37.461px);
  }
}

@media (max-width: 600px) {
  .selectTitle .title_beverage .title_beverage_visual .titleText .content .hot {
    margin-right: 0;
  }
  .selectTitle .title_beverage .title_beverage_visual .titleText .content {
    flex-direction: column;
    font-size: calc((0.0159 * 100vw + 6.439px) * 0.9);
  }
  .selectTitle .title_beverage .title_beverage_visual .titleText .content .hot,
  .selectTitle
    .title_beverage
    .title_beverage_visual
    .titleText
    .content
    .cold {
    width: calc(0.0638 * 100vw + 43.72px);
  }
  .selectTitle
    .title_beverage
    .title_beverage_visual
    .titleText
    .content
    .cold {
    margin-top: 5px;
  }
}

/* 세트메뉴 속성 ----------------------------------- */

.selectTitle .menu_set .menu_set_visual {
  display: block;
}

.selectTitle .menu_set .menu_set_visual .img {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.selectTitle .menu_set .menu_set_visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
}

.selectTitle .menu_set .menu_set_visual .menuValue_set {
  display: flex;
  margin-top: 20px;
}

.selectTitle .menu_set .menu_set_visual .menuValue_set .menu_sticker {
  margin-top: 0px;
  margin-left: 10px;
}

.selectTitle .menu_set .menu_set_visual .menuValue {
  width: 100%;
}

.selectTitle .menu_set .menu_set_visual .menuValue .menu_set_title {
  padding: 5px 0;
  font-size: 23px;
  display: flex;
  align-items: center;
}

@media (max-width: 790px) {
  .selectTitle .menu_set .menu_set_visual .menuValue .menu_set_title {
    font-size: calc(0.0159 * 100vw + 10.439px);
  }
}

/* 메뉴 설명 */
.selectTitle .menu_set_visual .menu_description {
  margin: 20px 0;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 23px;
}

/* 원산지 표시 */
.selectTitle .menu_set_visual .menu_origin {
  font-size: 13px;
  font-weight: 700;
  color: #b2b2b2;
}

/* 매뉴베이직 우측 금액이랑 담기부분 */
.selectTitle .menu_set_visual .menu_right {
  align-items: end;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 금액 부분  */
.selectTitle .menu_set_visual .menu_amount {
  padding: 12px 0;
  font-size: 22px;
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 790px) {
  .selectTitle .menu_set_visual .menu_amount {
    font-size: calc(0.0159 * 100vw + 9.439px);
  }
}

/* 담기 부분 */
.selectTitle .menu_set_visual .addcart {
  border-radius: 4px;
  font-size: 18px;
  background-color: #bc0000;
  padding: 12px 8px;
  color: #fff;
  width: 70px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}

@media (min-width: 880px) {
  .selectTitle .menu_set .menu_set_visual {
    display: flex;
  }

  .selectTitle .menu_set .menu_set_visual img {
    height: auto;
    min-height: 200px;
    width: 300px;
  }

  .selectTitle .menu_set .menu_set_visual .menuValue_set {
    width: 100%;
    margin-top: 0;
    padding-left: 20px;
  }
}

/* 메뉴 디테일 관련 ---------------------------------------------------- */

.detail_window {
  width: 90vw;
  position: relative;
  margin: 40px auto;
  background: url(image/background.webp);
  background-size: cover;
  border-top: 3px solid #c6a68d;
  border-bottom: 3px solid #c6a68d;
}

.detail_window_img {
  position: relative;
  margin: 30px 40px;
  height: 400px;
}

.detail_window_img img {
  border-radius: 7px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.detail_window_bg {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("image/background.webp");
  background-size: cover;
  position: fixed;
  cursor: pointer;
  z-index: -5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

#change_img {
  position: absolute;
  background-color: rgba(255, 0, 0, 0.8);
  padding: 12px 23px;
  border-radius: 3px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  top: 10px;
  left: 10px;
}

#view_id {
  position: absolute;
  background-color: #878787;
  padding: 12px 23px;
  border-radius: 3px;
  color: #fff;
  font-weight: 500;
  bottom: 10px;
  right: 10px;
}

.detail_window .menuValue {
  position: relative;
}

.detail_title {
  justify-content: space-between;
  display: flex;
  margin: 0 40px;
  font-size: 30px;
}

.detail_title_name {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 24px;
}

.detail_title .menu_amount {
  margin-top: 3px;
  margin-left: 50px;
  font-size: 26px;
  color: #fff;
  white-space: nowrap;
}

.detail_text {
  color: #fff;
  line-height: 27px;
  font-weight: 400;
  text-align: left;
  margin: 25px 40px 40px;
  font-size: 16px;
}

.detail_button {
  display: flex;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 0 40px 30px;
  justify-content: space-between;
}

.detail_button .back {
  background-color: #000;
  color: #fff;
  display: flex;
  height: 55px;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 180px;
  cursor: pointer;
}

.detail_button .addcart {
  color: #fff;
  display: flex;
  height: 55px;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 180px;
  cursor: pointer;
  background-color: #bc0000;
}

.detail_button #change_data,
.detail_button #change_affId,
.detail_button #delete_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin-left: 20px;
  flex-grow: 1;
  cursor: pointer;
}

.detail_button #change_data {
  background-color: #bc0000;
}

.detail_button #change_affId {
  background-color: #673ab7;
}

.detail_button #delete_menu {
  background-color: #607d8b;
}

.optionBtnBox {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.optionBtnBox #edit_option1,
.optionBtnBox #edit_option2,
.optionBtnBox #edit_option3 {
  background-color: #bc0000;
  flex-grow: 1;
  border-radius: 5px;
  padding: 12px 0;
  font-weight: 500;
  cursor: pointer;
}

/* 디테일 옵션 부분 */
.detail_option {
  margin: 0 40px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  justify-content: space-between;
}

.optionView {
  display: flex;
  gap: 10px;
}

.detail_option .option {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

.detail_option .option .option_title {
  color: #c6a68d;
  font-size: 17px;
  padding: 0 0 6px;
  border-bottom: 1px solid #c6a68d;
  text-align: left;
  margin-bottom: 15px;
}

.detail_option .box {
  background-color: #000;
  border-radius: 5px;
  width: 100%;
  text-align: left;
  padding: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.detail_option .box.selected {
  background-color: #c6a68d;
  color: #000;
}

.detail_option .box input {
  margin-right: 10px;
  transform: scale(1.3);
  outline: none;
  display: none;
}

.detail_option .box:not(:first-child) {
  margin-top: 10px;
}

/* 관리자용 옵션 화면 */

.detail_window.adminPage .detail_option .option_title {
  height: 28px;
}

/* 원산지 부분 */
.detail_window .menu_origin {
  text-align: left;
  color: #b2b2b2;
  font-size: 15px;
  font-weight: 400;
  margin: 40px 40px 20px;
}

@media (max-width: 600px) {
  .detail_window_img {
    height: 250px;
    margin: 24px 24px 18px;
  }
  .detail_title .menu_amount {
    font-size: calc(0.01587 * 100vw + 13.4627px);
  }
  .detail_title {
    flex-direction: column;
  }
  .detail_title .menu_amount {
    margin: 0;
    text-align: left;
    margin-top: 14px;
  }
  .detail_button .back {
    width: 30%;
  }
}

@media (max-width: 790px) {
  .detail_window {
    width: auto;
    margin: 20px 24px;
  }
  .detail_window_img {
    margin: 24px;
  }
  .detail_title_name {
    font-size: calc(0.01587 * 100vw + 11.4627px);
  }
  .detail_title {
    margin: 0 24px;
  }
  .detail_text {
    margin: 24px;
    font-size: calc(0.01058 * 100vw + 7.6398px);
    line-height: calc(0.01058 * 100vw + 15.6398px);
  }
  .detail_button {
    font-size: calc(0.01058 * 100vw + 11.6398px);
  }
  .detail_option {
    margin: 0 24px;
    font-size: calc(0.01058 * 100vw + 9.6398px);
  }
  .detail_window .menu_origin {
    margin: 40px 24px 20px;
    font-size: calc(0.01058 * 100vw + 6.6398px);
  }
}

@media (min-width: 1350px) {
  .detail_window {
    display: flex;
  }
  .detail_window_img {
    height: auto;
    width: 560px;
    margin: 30px;
  }
  .detail_window_img img {
    min-height: 300px;
  }
  .detail_window {
    width: 1300px;
  }
  .detail_window_bg {
    width: 1270px;
    left: 50%;
    transform: translateX(-50%);
  }
  .detail_window .menuValue {
    margin-top: 30px;
    margin-right: 30px;
    width: 100%;
  }
  .detail_title {
    margin: 0;
  }
  .detail_text {
    margin: 25px 0 40px;
  }
  .detail_option {
    margin: 0;
  }
  .detail_window .menu_origin {
    margin: 40px 0px 20px;
  }
  .detail_button {
    margin: 0 0 30px;
  }
}

/* 디테일 편집 창 */

/* 폼 전체 스타일  ----------------------------- */

#addForm,
#addNews,
#editForm,
#editForms,
#editOption1,
#editOption2,
#editOption3,
#editAffId,
#editImage {
  color: #000;
  display: none;
  margin: 0 auto;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  z-index: 1000;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 15px;
}

#noticeId {
  min-height: 50px;
}

#editForm,
#editOption1,
#editOption2,
#editOption3 {
  scrollbar-width: none;
}

#addForm {
  width: 300px;
}

#addNews {
  width: 600px;
}

#editForm,
#editForms,
#editOption1,
#editOption2,
#editOption3,
#editAffId {
  /* min-width: 500px; */

  width: 80vw;
}

/* 뉴스 추가 폼 */
#addNews {
}

#addNews textarea {
  resize: none;
  height: 100px;
  resize: vertical;
}

#addNews .edit_option_title {
  margin-bottom: 30px;
}

/* 에디트폼 백그라운드 */
.formBackground {
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* 폼 요소를 가로로 정렬하는 플렉스 박스 설정 */
.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/* 레이블 스타일 */
#addForm .form-group label,
#addNews .form-group label,
#editForm .form-group label,
#editForms .form-group label,
#editOption1 .form-group label,
#editOption2 .form-group label,
#editOption3 .form-group label,
#editAffId .form-group label,
#editImage .form-group label {
  font-weight: 400;
  margin-right: 10px;
  text-align: right;
  font-size: 14px;
}

#addForm .form-group label,
#addNews .form-group label {
  width: 40px;
}

#editForm .form-group label,
#editForms .form-group label,
#editOption1 .form-group label,
#editOption2 .form-group label,
#editOption3 .form-group label {
  width: 100px;
}

/* 인풋, 텍스트 에어리어 스타일 */
.form-group input[type="text"],
.form-group input[type="date"],
.form-group textarea,
.form-group .dropdown {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
}

/* 폼 텍스트에어리어 스타일 */
#formTitle,
#formContent {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
  resize: vertical;
}

/* 버튼 스타일 */
#saveBtn,
#saveNewsBtn,
#deleteNewsBtn,
#saveImgBtn,
#editBtn,
#closeBtn_addForm,
#closeBtn_addNews,
#closeBtn_News,
#closeBtn_editForm,
#closeBtn_editForms,
#closeBtn_editOption1,
#closeBtn_editOption2,
#closeBtn_editOption3,
#deleteBtn,
#chkdeleteBtn,
#chkSoldOutBtn,
#chkForSaleBtn,
#closeBtn_editAffId,
#closeBtn_editImage {
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

#chkeditBtn,
#optioneditBtn1,
#optioneditBtn2,
#optioneditBtn3 {
  margin-left: 10px;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

/* 추가 및 수정 버튼 스타일 */
#saveBtn,
#saveNewsBtn,
#saveImgBtn,
#editBtn,
#chkeditBtn,
#optioneditBtn1,
#optioneditBtn2,
#optioneditBtn3 {
  background-color: #4caf50;
}

#saveBtn:hover,
#saveNewsBtn:hover,
#editBtn:hover,
#chkeditBtn:hover,
#optioneditBtn1:hover,
#optioneditBtn2:hover,
#optioneditBtn3:hover {
  background-color: #45a049;
}

/* 닫기 (2가지) 버튼 스타일 */
#closeBtn_addForm,
#closeBtn_News,
#closeBtn_addNews,
#closeBtn_editForm,
#closeBtn_editForms,
#closeBtn_editOption1,
#closeBtn_editOption2,
#closeBtn_editOption3,
#closeBtn_editAffId,
#closeBtn_editImage {
  background-color: #f44336;
  margin-left: 10px;
}

#closeBtn_addForm:hover,
#closeBtn_News:hover,
#closeBtn_addNews:hover,
#closeBtn_editForm:hover,
#closeBtn_editForms:hover,
#closeBtn_editOption1:hover,
#closeBtn_editOption2:hover,
#closeBtn_editOption3:hover,
#closeBtn_editAffId:hover,
#closeBtn_editImage:hover {
  background-color: #e53935;
}

/* 품절 버튼 */
#chkSoldOutBtn,
#chkForSaleBtn {
  background-color: #878787;
  margin-left: 10px;
}

#chkSoldOutBtn:hover,
#chkForSaleBtn:hover {
  background-color: #6e6e6e;
}

/* 삭제 버튼 스타일 */
#deleteBtn,
#deleteNewsBtn,
#chkdeleteBtn {
  background-color: #424242;
  margin-left: 10px;
}

#deleteBtn:hover,
#deleteNewsBtn:hover,
#chkdeleteBtn:hover {
  background-color: #1c1c1c;
}

/* 무엇을 편집하고있는지 표시 */

#default_id {
  margin-bottom: 10px;
  padding: 10px;
  font-weight: 600;
  color: #1c1c1c;
  border-radius: 2px;
  background-color: #ddd;
}

#default_value {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

/* 메뉴 기본 정보 수정 */

.edit_data {
  min-height: 400px;
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 20px;
}

.edit_option_title {
  display: flex;
}

.option_setting_table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
  font-weight: 300;
  border-radius: 4px;
  overflow: hidden;
}

.option_setting_table_off,
.edit_option_title_box,
.edit_option_type_box {
  position: relative;
  display: inline-block;
  border-radius: 4px;
}

.option_setting_table_off .overlay,
.edit_option_title_box .overlay,
.edit_option_type_box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 반투명 검정 */
  z-index: 1;
  border-radius: 4px;
}

.option_setting_table th {
  padding: 8px;
}

.option_setting_table th,
.option_setting_table td {
  text-align: center;
  border-bottom: 1px solid #a5a5a5;
  border-right: 1px solid #a5a5a5;
  font-size: 13px;
}

.option_setting_table tr.set_name td {
  background-color: #494949;
  color: #fff;
}

.option_setting_table tr.set_name td input {
  background-color: transparent;
  color: #fff;
}

.option_setting_table td input {
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  text-align: center;
}

.option_setting_table th {
  background-color: #e0ebff;
}

.option_setting_table td:first-child {
  background-color: #e0f3cc;
  padding: 8px;
}

.option_setting_table td:last-child {
  text-align: right;
}

.option_setting_table colgroup col:first-child {
  width: 100px;
}

.option_setting_table colgroup:not(:first-child) {
  width: auto;
}

.option_setting_table .amount {
  text-align: end;
  padding-right: 10px;
}

.edit_data .label,
#addNews .label {
  background-color: #424242;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  padding: 10px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.edit_option_title .label {
  width: 250px;
  margin-right: 10px;
}

.option_Box {
  flex-grow: 1;
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.option_Box input {
  width: 25px;
  height: 25px;
}

.news_id,
.news_number {
  height: 50px;
}

.news_id input,
.news_number input {
  height: 100%;
  width: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  text-align: center;
}

.edit_option_onOff_box,
.edit_option_type_box {
  flex-grow: 1;
  flex-basis: 0; /* 각 요소가 동일한 비율로 공간을 차지 */
  min-width: 0; /* 필요시 요소가 축소될 수 있도록 */
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  overflow: hidden;
}

.edit_option_onOff_box .title,
.edit_option_type_box .title {
  padding: 5px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.edit_option_onOff_box .title {
  background-color: #45a049;
}

.edit_option_type_box .title {
  background-color: #673ab7;
}

.edit_option_onOff,
.edit_option_chk {
  padding: 6px;
}

/* 스티커 부분 edit */
.edit_data .sticker {
  display: flex;
  border: 1px solid #a5a5a5;
  border-radius: 3px;
}

.edit_data .sticker table {
  width: 100%;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  table-layout: fixed;
  border-radius: 3px;
  border-collapse: collapse;
  overflow: hidden;
}

.edit_data .sticker table th,
.edit_data .sticker table td {
  padding: 8px;
  text-align: center;
  border-right: 1px solid #a5a5a5;
}

.edit_data .sticker table th {
  font-size: 12px;
}

.edit_data .sticker table th.new {
  background-color: #c6a68d;
}

.edit_data .sticker table th.best {
  background-color: #bc0000;
  color: #fff;
}

.edit_data .sticker table th.soldout {
  background-color: #424242;
  color: #fff;
}

.edit_data .sticker table input[type="checkbox"] {
  width: 26px;
  height: 26px;
  margin: 0;
}

.edit_data .sticker table select.dropdown {
  width: 100%;
  padding: 4px;
  text-align: center;
  font-size: 23px;
}

/* 이미지 업로드 부분 */

.editViewer .form-group#uploadImageForm label {
  background-color: #4caf50;
  color: white;
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: auto;
}

.editViewer .form-group#uploadImageForm label:hover {
  background-color: #45a049;
}

button#clean_img {
  background-color: #f44336;
  color: white;
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button#clean_img:hover {
  background-color: #e53935;
}

#imagePreview {
  display: none;
  max-width: 200px;
  border: 2px solid #ddd;
  padding: 5px;
  border-radius: 5px;
  margin-right: 10px;
}

.show-preview {
  display: block;
}

/* 편집화면에서의 재구성 ----------------------------- */

.editViewer .selectTitle .title_beverage_visual,
.editViewer .selectTitle .menu_beverage_visual,
.editViewer .selectTitle .menu_basic_visual,
.editViewer .selectTitle .line .line_visual,
.editViewer .selectTitle .title .title_visual {
  padding-left: 40px;
}

@media (max-width: 600px) {
  .editViewer .title_visual {
    height: 100px;
  }
}
